* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/3d-render-avatar-character_23-2150611759.jpg') no-repeat center center/cover;
    z-index: -2;
    animation: zoom-in-out 15s ease-in-out infinite alternate;
}

@keyframes zoom-in-out {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 650px;
}

.sub-hed-banner {
    font-size: 1rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.setting-icon {
    color: #e88c01;
    margin-right: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 200;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.text-bold-hed {
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    margin-top: 18px;
    line-height: 1.6;
}

.btn-custom {
    background-color: #ff8800;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #e67300;
    transform: scale(1.05);
}

.hero-icons {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid gray;
}

.hero-icons .icon-box {
    text-align: center;
    color: #fff;
    justify-content: center;
    display: flex;
    font-size: 1rem;
}

.icon-box i {
    color: #ffbb33;
    margin-top: 5px;
    padding-right: 10px;
}


@media (max-width: 768px) {

    .hero-banner {
        height: 430px;
    }

    .hero-banner::after {
        height: 430px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .sub-hed-banner {
        font-size: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .btn-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-icons {
        margin-top: 30px;
        padding-top: 20px;
    }

    .hero-icons .icon-box {
        font-size: 0.9rem;
    }

    .hero-icons .col-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.about-section {
    padding: 50px 0;
    background: url(../img/about-us-bg.svg) no-repeat;
    background-position: bottom left;
    background-size: auto;
}

.image-wrapper {
    position: relative;
}

.main-img {
    width: 90%;
    border-radius: 20px;
    height: 450px;
}

.small-img {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 180px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-box {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-box h3 {
    font-size: 34px;
    font-weight: 800;
    color: #ff8a00;
    margin: 0;
}

.experience-box span {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-img {
        width: 100%;
    }

    .small-img {
        left: -10px;
    }

    .experience-box {
        right: -10px;
    }
}

.about-section .tag {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-section h1 {
    font-size: 42px;
    font-weight: 400;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.3;
}

.about-section h1 span {
    color: #000;
    font-weight: bold;
}

.about-section p.lead {
    color: #555;
    font-size: 1rem;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.rating-box-flex {
    justify-content: center;
    display: flex;
}

.rating-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
}

.rating-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background-image: url('../img/genuine-rating-counter-bg.jpg');
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-box .stars {
    color: #ff8a00;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .rating-box-flex {
        justify-content: start;
        display: flex;
    }
}

.btn-learn {
    background: #ff8a00;
    color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #e57800;
    color: #fff;
}

.setting-icon {
    color: #e57800;
}

.services-section {
    position: relative;
    color: #fff;
    background: url('../img/our-service-bg.jpg') center/cover no-repeat;
    padding: 100px 0 180px;
    height: 400px;
}

.services-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-content h1 {
    font-size: 3rem;
    font-weight: 300;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.services-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin-top: 90px;
    position: relative;
    z-index: 3;
}

.services-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}

.services-item:last-child {
    border-right: none;
}

.services-item .services-main-icon {
    margin-bottom: 15px;
    color: #ff9800;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.services-item h6 {
    font-weight: 500;
    color: #000;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.services-item .btn {
    background: #F5F5F5;
    border-radius: 8px;
    width: 40px;
    font-size: 1rem;
    height: 40px;
    color: black;
    transition: all 0.3s ease-in-out;
}

.services-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.services-item:hover .btn {
    background: #ff9800;
    color: #fff;
}

.services-item:hover .btn i {
    transform: rotate(-45deg);
    color: white;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {

    .services-section {
        height: auto;
    }

    .services-box {
        margin-top: 60px;
        padding: 20px;
    }

    .services-item {
        border: 1px solid #eee;
    }

    .services-item .services-main-icon {
        font-size: 2rem;
    }

    .services-item h6 {
        font-size: 1.5rem;
    }

    .services-item .btn {
        font-size: 1.3rem;
        width: 50px;
        height: 50px;
    }

}

.bg-testimonial {
    margin-top: 260px;
    background: url(../img/testimonial-bg.png);
    background-color: #f5f5f5;
    background-position: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: -20px auto 15px;
    border: 4px solid #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-name {
    font-weight: bold;
    font-size: 18px;
    color: #0073e6;
}

.testimonial-role {
    font-size: 14px;
    color: gray;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-icons a {
    color: #0073e6;
    margin: 0 8px;
    font-size: 18px;
    transition: 0.3s;
}

.testimonial-icons a:hover {
    color: #0056b3;
}

.custom-owl-nav button {
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #0073e6;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 100;
}

.custom-owl-nav button:hover {
    background: #0073e6;
    color: #fff;
}

.custom-prev {
    left: -60px;
}

.custom-next {
    right: -60px;
}

@media(max-width: 768px) {
    .custom-prev {
        left: 0;
    }

    .custom-next {
        right: 0;
    }

    .bg-testimonial {
        margin-top: 70px;
    }
}

.contact-section {
    padding: 60px 0;
}

.contact-info {
    padding: 30px;
}

.contact-info h2 {
    font-weight: 450;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #ebebeb;
}

.contact-icon {
    background: #ff9800;
    color: #fff;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-weight: 700;
    margin-bottom: 25px;
}

@media(max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

.contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.contact-form .btn {
    background: #ff9800;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background: #e68900;
    color: #fff;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    background-image: url(../img/footer-bg.svg);
}

.footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer .footer-logo img {
    width: 45px;
    margin-right: 10px;
}

.footer .footer-logo h4 {
    font-size: 22px;
    font-weight: bold;
}

.footer p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #f39c12;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    background: #222;
    color: #f39c12;
    border-radius: 50%;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background: #f39c12;
    color: #fff;
}

.footer .copyright {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.navbar-custom {
    background: linear-gradient(90deg, #4e54c8, #8f94fb);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand img{
    height: 60px;
    width: 210px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
    justify-content: center;
    text-align: center;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #ffe600;
    transition: width .3s;
    margin: auto;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #ffe600 !important;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}